01. Java Driver

ND#305 C03 L04 A02 Java Driver

Summary

MongoDB provides a driver that java applications can use to interact with MongoDB. There are two types of drivers for MongoDB,

Sync
Async - A callback-based asynchronous driver.

We will be using the sync version of the driver in this lesson. The link for the async driver is included in the additional resources section, feel free to explore it on your own.

The Mongo driver used in this lesson is 3.8.

Additional Resources
Mongo Java Driver
Mongo Java Driver Maven Coordinates
Mongo Java Async Driver